home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
RLaB
/
rlib
/
sinh.r
< prev
next >
Wrap
Text File
|
1994-02-21
|
306b
|
15 lines
//-------------------------------------------------------------------//
// Syntax: sinh ( X )
// Description:
// Sinh is the hyperbolic sine of the element(s) of X.
//-------------------------------------------------------------------//
sinh = function ( x )
{
return (exp (x) - exp (-x))/2;
};